diff options
Diffstat (limited to 'src/app/kdrama/[id]/page.jsx')
| -rw-r--r-- | src/app/kdrama/[id]/page.jsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/app/kdrama/[id]/page.jsx b/src/app/kdrama/[id]/page.jsx index 38593e7..9cb3cd8 100644 --- a/src/app/kdrama/[id]/page.jsx +++ b/src/app/kdrama/[id]/page.jsx @@ -3,8 +3,6 @@ import Image from "next/image"; import EpisodesButtons from "./buttons";
import { PreFetchVideoLinks } from "../components/cacher";
-export const runtime = "edge";
-
export default async function DramaInfo({ params }) {
const id = decodeURIComponent(params.id);
const info = await getDramaInfo(id);
|